home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / tuning / download / xteq / setup.exe / {app} / plugins / XQ Win2K Flash Taskbar 2.xpl < prev    next >
Text File  |  2001-04-14  |  2KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Taskbar"
  5. "NAME"="Flash Taskbar Options #2"
  6. "OSVERSION"="000111"
  7. "VERSION"="1.14"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="# of Flashes"
  10. "DESCRIPTION 1"="For W2K/XP: A non-focused window undergoing update, flashes 3 times on the taskbar until clicked. To change the number of flashes, enter another number such as "5" [no quotes]."
  11. "DESCRIPTION 2"="Entering a value of "0" [no quotes] will leave the taskbar button flashing until clicked."
  12. "DESCRIPTION 3"="NOTICE: This plugin is operational ONLY when the value in the prior plugin 'Flash Taskbar 1' is set to Default [that is the Box must be checked]."
  13. "DESCRIPTION 4"="NOTE #2: This plug-in is for Windows ME/2000/XP ONLY!"
  14. "AUTHOR"="Ojatex@aol.com"
  15. "CONTACTURL"="http://members.aol.com/ojatex/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Tip and settings provided by Pierre Szwarc.
  19.  
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.    i=RegReadValue("HKCU\Control Panel\Desktop\ForegroundLockTimeout") 'Dwrd=200000=default
  24.    if i=200000 then 
  25.       i=RegReadValue("HKCU\Control Panel\Desktop\ForegroundFlashCount")  'Dwrd=3=default
  26.       SetUIElement 1,i
  27.    else 
  28.       Disable
  29.    end if
  30. End Sub
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  i=GetUIElement(1)
  37.  Call RegWriteValue("HKCU\Control Panel\Desktop\ForegroundFlashCount",i,2)
  38. End Sub
  39.  
  40. Sub Plugin_Terminate 
  41. End Sub
  42.  
  43.  
  44.  
  45.